From a3bd01572191c676f9537f12f3ed2ab15f1903f7 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 16 Jul 2024 07:54:06 -0500 Subject: [PATCH] Better response variable name db_changed -> report_success --- tests/views/test_upload.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/views/test_upload.py b/tests/views/test_upload.py index 9eb8c52..c227250 100644 --- a/tests/views/test_upload.py +++ b/tests/views/test_upload.py @@ -1,4 +1,4 @@ -# Copyright (C) 2018, 2019, 2020, 2021 The Meme Factory, Inc. +# Copyright (C) 2018, 2019, 2020, 2021, 2024 The Meme Factory, Inc. # http://www.karlpinc.com/ # This file is part of PGWUI_Upload_Core. @@ -39,7 +39,7 @@ pytestmark = pytest.mark.unittest # Constants CHANGED_RESPONSE = { 'db': 'somedb', - 'db_changed': True, + 'report_success': True, 'filename': 'file', 'lines': 5, 'null_rep': 'NULL', @@ -49,7 +49,7 @@ CHANGED_RESPONSE = { 'user': 'someuser', } -UNCHANGED_RESPONSE = {'db_changed': False} +UNCHANGED_RESPONSE = {'report_success': False} # A "upload form" UPLOAD_FORM_W_LIT_CHECKED = {'literal_col_headings': True} -- 2.34.1